<# # It is recommended to test the script on a local machine for its purpose and effects. # ManageEngine Endpoint Central will not be responsible for any # damage/loss to the data/setup based on the behavior of the script. # Description: Script is designed To Disable SMBv1 protocol # Configuration Type - COMPUTER # Refer : https://learn.microsoft.com/en-us/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-smbv1-v2-v3?tabs=server # Note : If the function was changed but not effective, please advise the user to contact Windows Support. # Caution: Disabling the SMBv1 protocol might affect network browsing or file processing operations #> Set-SmbServerConfiguration -EnableSMB1Protocol $false -Force